The FacNavBar object contains the following event:
This event is fired when the user changes the selected item in any of the facility attribute filter combo boxes.
FacNavBar_EventOnSelChangeLevel(Level As Short)
| Parameter | Required | Description |
|---|---|---|
|
Level |
Yes |
Indicates the level of the facility attribute filter that was changed. |
Example
The following example loads the Group Grid Control with new facility information when any of the FacNavBar’s facility attribute filter combo boxes is changed. This example is taken from the FacNavBar Example.
|
Sub FacNavBar_EventOnSelChangeLevel(Level) Dim This : Set This = FacNavBar
LoadGrid()
End Sub |